home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 May: Tool Chest / Developer CD Series May 1996 (Tool Chest) (Apple Computer) (1996).iso / Sample Code / Snippets / Development Tools & Languages / AEGestalt / ULabelView.h < prev    next >
Encoding:
Text File  |  1995-02-05  |  681 b   |  35 lines  |  [TEXT/MPS ]

  1. //     ULabelView.h
  2. //     Copyright © 1991-92 by Apple Computer, Inc. All rights reserved.
  3. //    Kent Sandvik DTS
  4. //    This file contains the TLabelView class, used for displaying
  5. //    the labels in the leftmost view
  6. //
  7. //    <1>        khs        1.0        First final version
  8.  
  9.  
  10. #ifndef __ULABELVIEW__
  11. #define __ULABELVIEW__
  12.  
  13. #ifndef __UAEGESTALT__
  14. #include "UAEGestalt.h"
  15. #endif
  16.  
  17.  
  18. DeclareClassDesc(TLabelView);
  19.  
  20. class TLabelView : public TView
  21. {
  22.  
  23.     DeclareClass(TLabelView);
  24.  
  25. public:
  26.     TLabelView();
  27.     virtual void Draw(const VRect& area);
  28.     virtual void DrawLabels();
  29.  
  30.     //    FIELDS
  31.     CStr255 fLabel1, fLabel2, fLabel3, fLabel4, fLabel5, fLabel6, fLabel7, 
  32.             fLabel8, fLabel9, fLabel10, fLabel11, fLabel12;
  33. };
  34.  
  35. #endif